home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / update~1.z / update~1 / include / include.diff
Encoding:
Text File  |  1989-08-24  |  2.2 KB  |  90 lines

  1. *** /tmp/,RCSt1a12869    Thu Aug 24 00:31:02 1989
  2. --- PatchLevel.h    Sun Aug 20 02:41:53 1989
  3. ***************
  4. *** 1,5 ****
  5.   /*
  6. !  *    PathLevel: 3
  7.    *
  8.    *    the Patch Level above is to identify the version
  9.    *    of the all the files in this directory. given the above
  10. --- 1,5 ----
  11.   /*
  12. !  *    PathLevel: 4
  13.    *
  14.    *    the Patch Level above is to identify the version
  15.    *    of the all the files in this directory. given the above
  16. *** /tmp/,RCSt1a12869    Thu Aug 24 00:31:25 1989
  17. --- std.h    Sat Aug 19 19:34:34 1989
  18. ***************
  19. *** 325,331 ****
  20.   void *        lmemchr(CONST void *, int, long);
  21.   void *        lmemccpy(void *, CONST void *, int, long);
  22.   void *        lmalloc(unsigned long);
  23. ! void *        lremalloc(void *, unsigned long);
  24.   void *        lcalloc(unsigned long, unsigned long);
  25.   
  26.   #endif    /* __MSHORT__ */
  27. --- 325,331 ----
  28.   void *        lmemchr(CONST void *, int, long);
  29.   void *        lmemccpy(void *, CONST void *, int, long);
  30.   void *        lmalloc(unsigned long);
  31. ! void *        lrealloc(void *, unsigned long);
  32.   void *        lcalloc(unsigned long, unsigned long);
  33.   
  34.   #endif    /* __MSHORT__ */
  35. ***************
  36. *** 356,362 ****
  37.   #define lmemchr        memchr
  38.   #define lmemccpy    memccpy
  39.   #define lmalloc        malloc
  40. ! #define lremalloc    realloc
  41.   #define lcalloc        calloc
  42.   #endif
  43.   
  44. --- 356,362 ----
  45.   #define lmemchr        memchr
  46.   #define lmemccpy    memccpy
  47.   #define lmalloc        malloc
  48. ! #define lrealloc    realloc
  49.   #define lcalloc        calloc
  50.   #endif
  51.   
  52. *** /tmp/,RCSt1a12869    Thu Aug 24 00:31:26 1989
  53. --- stdarg.h    Sat Aug 19 04:25:03 1989
  54. ***************
  55. *** 33,39 ****
  56.   
  57.   #define va_arg(AP, TYPE)                        \
  58.    (AP += __va_rounded_size (TYPE),                    \
  59. !   *((TYPE *) (AP - __va_rounded_size (TYPE))))
  60.   
  61.   #endif /* __GNUC__ */
  62.   
  63. --- 33,39 ----
  64.   
  65.   #define va_arg(AP, TYPE)                        \
  66.    (AP += __va_rounded_size (TYPE),                    \
  67. !   ((TYPE *) AP)[-1])
  68.   
  69.   #endif /* __GNUC__ */
  70.   
  71. *** /tmp/,RCSt1a12869    Thu Aug 24 00:31:34 1989
  72. --- varargs.h    Sat Aug 19 04:25:17 1989
  73. ***************
  74. *** 28,34 ****
  75.   
  76.   #define va_arg(AP, TYPE)                        \
  77.    (AP += __va_rounded_size (TYPE),                    \
  78. !   *((TYPE *) (AP - __va_rounded_size (TYPE))))
  79.   
  80.   #endif /* __GNUC__ */
  81.   
  82. --- 28,34 ----
  83.   
  84.   #define va_arg(AP, TYPE)                        \
  85.    (AP += __va_rounded_size (TYPE),                    \
  86. !   ((TYPE *) AP)[-1])
  87.   
  88.   #endif /* __GNUC__ */
  89.   
  90.